ds_queue_size

Returns the number of values stored in the given queue.

语法:

ds_queue_size(id);


参数 描述
id 要检查的数据结构的id。


返回: Real(实数)


描述

This function will return the "size" of the queue, ie: the number of items that have been queued onto it.


例如:

if !ds_queue_empty(control_queue)
   {
   num = ds_queue_size(control_queue);
   }

The above code checks a ds_queue to see if it is empty or not, and if it is not, it gets the number of items that it contains and stores the value in a variable.


上一页: Queues
下一页: ds_queue_enqueue
© Copyright YoYo Games Ltd. 2018 All Rights Reserved